home *** CD-ROM | disk | FTP | other *** search
- ; $VER: MinBar Installer 1.20 (16.10.94) by Steve Bleasdale
- ;
- ;-- Language specific string definitions --------------------------------------
-
- (set MSG_SPACE "\n\n\nInstalling this nice stuff will use \n up to 140Kilobytes of your hard disk space.")
- (set MSG_DESTINATION "Where would you like MinBar to be installed?\n(MinBar will be directly copied there)")
- (set MSG_DESTINATIONGTI "Where would you like MinBarGti to be installed?\n(MinBarGti will be directly copied there)")
- (set MSG_COPYING "Going to copy %s to %s.")
- (set @abort-button "Stop here!")
- (set MSG_THANKS "Thank you for installing MinBar!\n\n\n;-)")
-
-
- (set installed "")
- (set @default-dest "Sys:Prefs")
-
- (set dest_dir
- (askdir (prompt (MSG_DESTINATION @app-name @app-name))
- (help @askdir-help)
- (default @default-dest)
- (newpath))
- )
-
- (set @default-dest dest_dir)
-
- (copyfiles (prompt (MSG_COPYING @app-name @default-dest))
- (help @copyfiles-help)
- (source "MinBar/MinBar")
- (dest dest_dir)
- (infos)
- )
- (set @default-dest "Sys:WbStartup")
- (set dest_dir
- (askdir (prompt (MSG_DESTINATIONGTI @app-name @app-name))
- (help @askdir-help)
- (default @default-dest)
- (newpath))
- )
-
- (set @default-dest dest_dir)
-
- (copyfiles (prompt (MSG_COPYING @app-name @default-dest))
- (help @copyfiles-help)
- (source "MinBarGti/minBarGti")
- (dest dest_dir)
- (infos)
- )
-
- (set @default-dest "HELP:")
- (set dest_dir
- (askdir (prompt (MSG_DESTINATIONGTI @app-name @app-name))
- (help @askdir-help)
- (default @default-dest)
- (newpath))
- )
-
- (set @default-dest dest_dir)
-
- (copyfiles (prompt (MSG_COPYING @app-name @default-dest))
- (help @copyfiles-help)
- (pattern "#?")
- (source "Doc/")
- (dest dest_dir)
- (files)
- (confirm)
- (infos)
- )
- (set @default-dest "ENVARC:")
- (set dest_dir
- (askdir (prompt ("Copy the default preferences files where ?"))
- (help @askdir-help)
- (default @default-dest)
- (newpath))
- )
-
- (set @default-dest dest_dir)
-
- (copyfiles (prompt (MSG_COPYING @app-name @default-dest))
- (help @copyfiles-help)
- (pattern "#?")
- (source "Env/")
- (dest dest_dir)
- (files)
- (confirm)
- (infos)
- )
-
-
- (copylib
- (prompt "Copying WbStart.library to Libs:\n this is ©Stefan becker.")
- (help @copylib-help)
- (source "libs/wbstart.library")
- (dest "Libs:")
- (confirm)
- )
-
- (message "Please reboot before running MinBar\n for the first time to ensure that \nanything in ENVARC: is copied to ENV:")
-
-
-